runtime.sudog.parent (field)
30 uses
runtime (current package)
runtime2.go#L385: parent *sudog // semaRoot binary tree
sema.go#L262: s.parent = t.parent
sema.go#L266: s.prev.parent = s
sema.go#L269: s.next.parent = s
sema.go#L277: t.parent = nil
sema.go#L313: s.parent = last
sema.go#L317: for s.parent != nil && s.parent.ticket > s.ticket {
sema.go#L318: if s.parent.prev == s {
sema.go#L319: root.rotateRight(s.parent)
sema.go#L321: if s.parent.next != s {
sema.go#L324: root.rotateLeft(s.parent)
sema.go#L357: t.parent = s.parent
sema.go#L360: t.prev.parent = t
sema.go#L364: t.next.parent = t
sema.go#L384: if s.parent != nil {
sema.go#L385: if s.parent.prev == s {
sema.go#L386: s.parent.prev = nil
sema.go#L388: s.parent.next = nil
sema.go#L394: s.parent = nil
sema.go#L406: p := x.parent
sema.go#L411: x.parent = y
sema.go#L414: b.parent = x
sema.go#L417: y.parent = p
sema.go#L434: p := y.parent
sema.go#L439: y.parent = x
sema.go#L442: b.parent = y
sema.go#L445: x.parent = p
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |